home *** CD-ROM | disk | FTP | other *** search
/ Champak 114 / Vol 114.iso / games / pico_2.swf / scripts / DefineSprite_273 / frame_1 / DoAction.as
Encoding:
Text File  |  2010-08-12  |  363 b   |  20 lines

  1. this.slider.onPress = function()
  2. {
  3.    this._parent.onEnterFrame = function()
  4.    {
  5.       _root.changeVol(this);
  6.    };
  7. };
  8. this.slider.onRelease = function()
  9. {
  10.    delete this._parent.onEnterFrame;
  11. };
  12. this.slider.onReleaseOutside = function()
  13. {
  14.    delete this._parent.onEnterFrame;
  15. };
  16. this.tracks.onPress = function()
  17. {
  18.    _root.switchTracks();
  19. };
  20.